home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / ICON_8 / ICONX_FO / FXTRA.C < prev    next >
Text File  |  1990-03-02  |  744b  |  28 lines

  1. /*
  2.  * File: fxtra.c
  3.  *  Contents: additional functions to extend the standard Icon repertoire.
  4.  *  This file includes collections of functions, such as functions specific to
  5.  *  MS-DOS (DosFncs).
  6.  *
  7.  *  These collections are under the control of conditional compilation
  8.  *  as indicated by the symbols in parentheses. To enable a set of functions,
  9.  *  define the corresponding symbol in ../h/define.h.  The functions themselves
  10.  *  are in separate files, included according to the defined symbols.
  11.  */
  12.  
  13. #include "::h:config.h"
  14. #include "::h:rt.h"
  15. #include "rproto.h"
  16.  
  17.  
  18. #ifdef DosFncs
  19. #include "fxmsdos.c"
  20. #endif                    /* DosFncs */
  21.  
  22. #ifdef EvalTrace
  23. #include "fxtrace.c"
  24. #endif                    /* EvalTrace */
  25.  
  26.  
  27. static char junk;            /* avoid empty module */
  28.